/* education.css - Bespoke Architecture */

.unique-education {
    background-color: var(--primary-dark, rgb(13, 13, 36));
    color: white;
}

.edu-pathways {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pathway-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.4s;
    position: relative;
    overflow: hidden;
}

.pathway-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.pathway-card:hover {
    transform: translateY(-10px);
    background: rgba(79, 172, 254, 0.05);
}

.edu-icon {
    width: 80px;
    height: 80px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 35px;
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.4);
}

.pathway-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.pathway-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
